公司地址:茂名市人民南路新村大院22號101
電話:13592986386
發(fā)布時間:2014/10/17 11:23:13
在一般事務(wù)處理頁面,可以輕松的得到 Request,Response對象,從而進(jìn)行相應(yīng)的操作,如下:
HttpRequest Request = context.Request;
HttpResponse Response = context.Response;
但是要得到 Session的值就沒有那么簡單了。比如你要在ashx得到保存在Session中的登錄帳號Session["userAccount"]
如果你只是context.Session["userAccount"]的話是會報 “未將對象引用設(shè)置到對象的實例”的異常
所以,如果要想取Session中的值 ,需要如下所示
1、引入 命名空間:
using System.Web.SessionState;
2、實現(xiàn)IRequiresSessionState接口,具體如下
/// <summary>
/// $codebehindclassname$ 的摘要說明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class AddUserInfo : IHttpHandler,IRequiresSessionState //就是這樣顯示的實現(xiàn)一下,不用實現(xiàn)什么方法
{
public void ProcessRequest(HttpContext context)
{
//...
//這樣你就可以如下 操作了
if(context.Session["userAccount"] != null)
{
string account = context.Session["userAccount"].ToString();
}
//...繼續(xù)下面的代碼
}
}